home *** CD-ROM | disk | FTP | other *** search
/ Kyoko 8203 / Kyoko 8203.iso / pc / link.dxr / 00020_ÉÅÉjÉÖÅ[É{É^Éì.ls < prev    next >
Encoding:
Text File  |  2003-03-03  |  1.2 KB  |  56 lines

  1. global page
  2.  
  3. on mouseUp me
  4.   page = 1
  5.   cursor(0)
  6.   mynumber = me.spriteNum
  7.   case mynumber of
  8.     7:
  9.       go(1, "photo")
  10.       updateStage()
  11.     8:
  12.       go(1, "clip")
  13.       updateStage()
  14.     9:
  15.       go(1, "comic")
  16.       updateStage()
  17.     10:
  18.       go(1, "link")
  19.       updateStage()
  20.   end case
  21. end
  22.  
  23. on mouseEnter me
  24.   cursor([1, 2])
  25.   mynumber = me.spriteNum
  26.   case mynumber of
  27.     7:
  28.       set the memberNum of sprite the spriteNum of me to the number of member "C1_on"
  29.     8:
  30.       set the memberNum of sprite the spriteNum of me to the number of member "C2_on"
  31.     9:
  32.       set the memberNum of sprite the spriteNum of me to the number of member "C3_on"
  33.     10:
  34.       set the memberNum of sprite the spriteNum of me to the number of member "C4_on"
  35.   end case
  36. end
  37.  
  38. on mouseLeave me
  39.   cursor(0)
  40.   mynumber = me.spriteNum
  41.   case mynumber of
  42.     7:
  43.       set the memberNum of sprite the spriteNum of me to the number of member "C1_off"
  44.     8:
  45.       set the memberNum of sprite the spriteNum of me to the number of member "C2_off"
  46.     9:
  47.       set the memberNum of sprite the spriteNum of me to the number of member "C3_off"
  48.     10:
  49.       set the memberNum of sprite the spriteNum of me to the number of member "C4_off"
  50.   end case
  51. end
  52.  
  53. on mouseWithin me
  54.   cursor([1, 2])
  55. end
  56.